{% extends 'base.html' %} {% load crispy_forms_tags %} {% block title %}Change Password{% endblock %} {% block content %}

Change Password

{% csrf_token %} {% if form.errors %}
Error: Please correct the errors below. {% for field, errors in form.errors.items %} {% for error in errors %}
{{ error }}
{% endfor %} {% endfor %}
{% endif %}
{{ form.old_password|as_crispy_field }}
{{ form.new_password1|as_crispy_field }}
  • • At least 8 characters
  • • Not a commonly used password
  • • Not entirely numeric
{{ form.new_password2|as_crispy_field }}
Back to Profile
{% endblock %} {% block extra_js %} {% endblock %}